home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / comp / addpatch.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  259 b   |  14 lines

  1. /*
  2.                             A D D P A T C H . C
  3. */
  4.  
  5. #include "iccomp.h"
  6.  
  7. void addpatch (unsigned *list, unsigned len, register unsigned value)
  8. {
  9.     register unsigned
  10.         index;
  11.  
  12.     for (index = 0; index < len; index++)
  13.         list[index] += value;
  14. }